home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5 (Alt)
/
MACD 5.bin
/
workbench
/
libs
/
bignum_37_28.lha
/
BigNum
/
Examples
/
src
/
INFO.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-02-11
|
298 b
|
16 lines
#define __USE_SYSBASE
#include <proto/exec.h>
#include <proto/BigNum.h>
__saveds int maine(void)
{
struct ExecBase *SysBase;
struct Library *BigNumBase;
SysBase=*((struct ExecBase **)4);
if(BigNumBase=OpenLibrary("BigNum.library",37))
BigNumInfo();
CloseLibrary(BigNumBase);
return(0);
}